Draft Trimex/es

Draft Trimex

Ubicación en el Menú
Croquis -> Recortar/Extender
Entornos de trabajo
Croquis, Arquitectura
Atajo de teclado por defecto
T R
Introducido en versión
-
Ver también
Extrusión

Descripción

Esta herramienta recorta/corta y extiende líneas y polilíneas, y extruye caras.

A Draft Wire extended and then trimmed.

Trim or extend

Usage

  1. Selecciona el contorno que quieres recortar o extender, o selecciona una cara que quieras extruir
  2. Presiona el botón Recortar, o presiona las teclas T y R
  3. Designa un punto en la vista 3D

introduced in 26.3: For supported BIM objects, picking one of the object's end faces trims or extends it by adjusting its length and placement instead of its underlying wire geometry.

Options

The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts.

Here is an example to explain the modifier keys. The left edge or the bottom edge of the U-shaped wire was extended. All Draft Snaps were turned off.

  • Recortar o extender se decide de forma automática en función de la posición del cursor
  • Si mueves el cursor sobre otro objeto, la operación de recortar/extender se ajustará a dicho objeto o segmento
  • Presionando SHIFT se realizará una restricción al segmento que está siendo actualmente recortado o extendido.
  • Presionando ALT se invertirá la dirección del recorte
  • Cuando el objeto seleccionado es una cara, o cuando se selecciona una cara de un objeto existente, la herramienta de recortar/extender cambia al modo extruir. En modo extruir, presionando SHIFT se restringe la extrusión a la normal a la cara.

Extrude

1.1 and below: This command could also extrude a face into a Part Extrude object. This functionality is now a separate command, see BIM ExtrudeFace. introduced in 26.3

Scripting

Programación

No disponible. Mira la herramienta Extrusión.

introduced in 26.3: The extrude method example below remains valid; the GUI equivalent is now BIM ExtrudeFace rather than this command.

extrusion = extrude(obj, vector, solid=False)

Example:

import FreeCAD as App
import Draft

doc = App.newDocument()

rectangle = Draft.make_rectangle(1500, 500)
doc.recompute()

vector = App.Vector(0, 0, 300)
solid = Draft.extrude(rectangle, vector, solid=True)
doc.recompute()